home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / gethostname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-16  |  156 b   |  12 lines

  1. #include "amiga.h"
  2. #include <unistd.h>
  3.  
  4. extern char *_system_name;
  5.  
  6. int gethostname(char *buf, int len)
  7. {
  8.   strncpy(buf, _system_name, len);
  9.  
  10.   return 0;
  11. }
  12.